home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
TECHNICA
/
AUTOCAD
/
H108.ZIP
/
JUN91.ZIP
/
TIP668.LSP
< prev
next >
Wrap
Lisp/Scheme
|
1991-09-26
|
597b
|
21 lines
;TIP668.LSP Dim Status on Screen Menu (c)1991, Terry Priest
(defun DMLN ()
(cond
((and (zerop (getvar "DIMSE1"))
(zerop (getvar "DIMSE2")))
(grtext 5 "EXLIN"))
((and (not (zerop (getvar "DIMSE1")))
(not (zerop (getvar "DIMSE2"))))
(Grtext 5 "NOEXLIN"))
((and (not (zerop (getvar "DIMSE1")))
(zerop (getvar "DIMSE2")))
(grtext 5 "NO1STLN"))
((and (zerop (getvar "DIMSE1"))
(not (zerop (getvar "DIMSE2"))))
(grtext 5 "NO2NDLN"))
)
(grtext 2 (rtos (getvar "DIMSCALE") 2))
(princ)
)